home *** CD-ROM | disk | FTP | other *** search
- function onRelease()
- {
- _alpha = 100;
- if(this._rotation > 0)
- {
- _parent._parent.STAGE[dressVal]++;
- }
- else
- {
- _parent._parent.STAGE[dressVal]--;
- }
- if(_parent._parent.STAGE[dressVal] < 1)
- {
- _parent._parent.STAGE[dressVal] = range;
- }
- else if(_parent._parent.STAGE[dressVal] > range)
- {
- _parent._parent.STAGE[dressVal] = 1;
- }
- _parent.HERO.play();
- _parent._parent.saveAllData();
- }
- function onRollOver()
- {
- _alpha = 100;
- }
- function onEnterFrame()
- {
- if(_alpha > 50)
- {
- _alpha = _alpha - 2;
- }
- }
- scale = _xscale;
- rotateStore = _rotation;
-